home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / update~4.z / update~4 / lib_stdio__eprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-06  |  269 b   |  12 lines

  1. #define __SRC__
  2. #include <stdio.h>
  3.  
  4. /* This is used by the `assert' macro.  */
  5. void __eprintf (string, line, filename)
  6. char *string;
  7. long line;
  8. char *filename; /* note if STDC then filename is already in string */
  9. {
  10.     (void)vfprintf(stderr, string, (char *)&line);
  11. }
  12.